object files - significado y definición. Qué es object files
Diclib.com
Diccionario en línea

Qué (quién) es object files - definición

FILE CONTAINING RELOCATABLE FORMAT MACHINE CODE
Object code file format; Object file format; Object file formats; Object format; Object files; Object File; OBJ file; Object module; Objective Code; Executable format; Executable file type; Executable type; .o; .o file; .so file

Object file         
An object file is a computer file containing object code, that is, machine code output of an assembler or compiler. The object code is usually relocatable, and not usually directly executable.
X-Phile         
  • series pilot]], along with several other episodes.
  • The set for Mulder's office.
  • "The End", the season five finale (1998), was the last episode to be filmed in [[Vancouver]] until the revival in 2016.
  • A fan [[cosplay]]ing as Agent Scully.
  • Shots from the show's original and current opening credit sequence
AMERICAN SCIENCE FICTION DRAMA TELEVISION SERIES
X-Files; X-files; The X-files; The X Files; The X Files (television series); Xfiles; X-Files, The; X-philes; X files; X-Files (20th century fox); The x files; The X File; X akták; History of The X-Files; The X-Files Awards and Nominations; X aktak; The X files; X-Philes; X-Phile; The X-Philes; The X-Files fandom; The X-Files opening credits; The X-Files Opening sequence; Opening title sequence of The X-Files; Mulderites; X files tv series; TX-F; T-XF; T-X-F; TXF3; The (X)-Files; (X)-Files; THE Ⓧ-FILES; The Ⓧ-Files; Ⓧ-Files
Computer term for someone who is obssesed with the X-files.
He watches the X-Files everyday? What an X-Phile!
object         
WIKIMEDIA DISAMBIGUATION PAGE
Object orientation; Objects; Oject; Object (disambiguation); Objecct; Event-driven object-orientation; Objects (disambiguation)
n.
1.
Thing, reality, particular, existence, fact, phenomenon, percept, thing perceived, external reality.
2.
Mark, aim, target, butt; goal, end, destination; recipient, correlate, or complement (of a conscious subject).
3.
End, aim, intent, intention, purpose, design, motive, use, view, drift, goal, final cause.
4.
(Gram.) Regimen, complement.

Wikipedia

Object file

An object file is a computer file containing object code, that is, machine code output of an assembler or compiler. The object code is usually relocatable, and not usually directly executable. There are various formats for object files, and the same machine code can be packaged in different object file formats. An object file may also work like a shared library.

In addition to the object code itself, object files may contain metadata used for linking or debugging, including: information to resolve symbolic cross-references between different modules, relocation information, stack unwinding information, comments, program symbols, debugging or profiling information. Other metadata may include the date and time of compilation, the compiler name and version, and other identifying information.

The term "object program" dates from at least the 1950s:

A term in automatic programming for the machine language program produced by the machine by translating a source program written by the programmer in a language similar to algebraic notation.

A computer programmer generates object code with a compiler or assembler. For example, under Linux, the GNU Compiler Collection compiler will generate files with a .o extension which use the ELF format. Compilation on Windows generates files with a .obj extension which use the COFF format. A linker is then used to combine the object code into one executable program or library pulling in precompiled system libraries as needed.